home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-29 | 649 b | 32 lines | [TEXT/CWIE] |
- // CURLTestDialog.h ©1997 John C. Daub. All rights reserved.
-
- // This is the dialog handler used to demonstrate the CURLPushButton PowerPlant
- // class. It's just a hack to demonstrate, not necessarily good coding
- // practice.
-
- #pragma once
-
- #include <UModalDialogs.h>
- #include "CInternetConfig.h"
-
-
- class CURLTestDialog : public StDialogHandler {
-
- public:
-
- static void DoAboutBox( LCommander *inSuper );
-
- CURLTestDialog( ResIDT, LCommander *);
- virtual ~CURLTestDialog();
-
-
-
- protected:
-
- virtual void ListenToMessage( MessageT inMessage,
- void* ioParam );
-
- CInternetConfig *mIC;
- Boolean mICWorking;
-
- };